home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Visual Database / Visual dBase Pro v7.0 / DATA1.CAB / Sample_dBASE / Fleet / Fleet.cdm < prev    next >
Encoding:
Text File  |  1997-11-20  |  458 b   |  24 lines

  1. class fleetCDataModule of DATAMODULE custom
  2.  
  3.  
  4.    this.SESSIONFLEET = new SESSION()
  5.    this.SESSIONFLEET.parent = this
  6.    with (this.SESSIONFLEET)
  7.       left = 0
  8.       top = 0
  9.       lockRetryInterval = 0
  10.    endwith
  11.  
  12.  
  13.    this.DBFLEET = new DATABASE()
  14.    this.DBFLEET.parent = this
  15.    with (this.DBFLEET)
  16.       left = 5
  17.       top = 0
  18.       databaseName = "FLEET"
  19.       session = form.SESSIONFLEET
  20.       active = true
  21.    endwith
  22.  
  23. endclass
  24.